|
This page last changed on Sep 11, 2008 by williams.
CruiseControl.NET supports integrating with the PVCS Source Control system via the pcli client.
PVCS Configuration Examples
For the PVCS provider you must specify the executable, project and subproject. Additional optional arguments are defined in the table below.
<sourcecontrol type="pvcs">
<executable>c:\pvcs\pvcs.exe</executable>
<project>ccnet</project>
<subproject>ccnet1.0</subproject>
</sourcecontrol>
Configuration Elements:
| Node |
Description |
Type |
Default |
Required |
| executable |
The PVCS client executable. |
string |
pcli |
true |
| project |
The location of the PVCS project database |
string |
n/a |
true |
| subproject |
One ore more projects in PVCS that you wish to monitor. As long as each subproject is separated with a space and a "/", you can monitor more than one subproject at a time. |
string |
n/a |
true |
| username |
Username for the user account to use to connect to PVCS |
string |
n/a |
false |
| password |
Password for the PVCS user account |
string |
n/a |
false |
| workingdirectory |
The local directory containing the source from the repository. |
string |
n/a |
false |
| recursive |
Whether to monitor all subfolders of the specified subproject |
boolean |
true |
false |
| labelOnSuccess |
Whether or not to apply a label to the repository after each successful build. |
boolean |
false |
false |
| autoGetSource |
Specifies whether the CCNet should take responsibility for retrieving the current version of the source from the repository |
bool |
true |
false |
| labelOrPromotionName |
The label to use as your code-base. If this is specified, this label will be called to get all code associated with it when a get is done. When the build is successful, the good code will have this base label associated with it in turn promoting it into the label.
Label to apply to repository. If a value is specified, labelOnSuccess will automatically be set to true. |
string |
n/a |
false |
| timeout |
Sets the timeout period for the source control operation. See Timeout Configuration for details. |
Timeout |
10 minutes |
false |
| manuallyAdjustForDaylightSavings |
In PVCS 7.5.1, the client does not automatically adjust dates to accommodate daylight savings time. Setting this flag to true will make CCNet compensate for it. This flag is available in CCNet 1.2.2 and later. |
boolean |
false |
false |
| issueUrlBuilder |
Converts the comment (or parts from it) into an url pointing to the issue for this build.
See Issue Builder for more details |
Group |
N/A |
false |
- Code contributed by James Bolles
|